home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_09_02 / 9n02095a < prev    next >
Text File  |  1990-12-16  |  899b  |  43 lines

  1.  
  2. /*
  3.  *    01-Feb-1990 - created
  4.  */
  5.  
  6. /***********************************************************
  7.  *
  8.  *    Module:   local.h
  9.  *
  10.  *    Purpose:  include file for local additions to stdlib.h
  11.  *
  12.  **********************************************************/
  13.  
  14. #ifndef LOCAL_H
  15. #define LOCAL_H
  16.                             /* portability definitions */
  17. #include "portdefs.h"
  18.                             /* standard includes */
  19. #include <stdio.h>
  20. #include <ctype.h>
  21. #include <math.h>
  22.                             /* ANSI standard includes */
  23. #include "stddef.h"
  24. #include "limits.h"
  25. #include "string.h"
  26. #include "stdlib.h"
  27.                             /* TRUE and FALSE booleans */
  28. #ifndef TRUE
  29. #define TRUE   1
  30. #endif
  31.  
  32. #ifndef FALSE
  33. #define FALSE  0
  34. #endif
  35.  
  36. #ifndef MIN
  37. #define MIN(x, y) (((x) < (y)) ? (x) : (y))
  38. #endif
  39. #endif   /* LOCAL_H */
  40. /*
  41.  *    end of file
  42.  */
  43.